home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol06 / 03 / winedd / devdefs.h < prev    next >
Text File  |  1991-05-01  |  672b  |  23 lines

  1. /* ------------------------------ DEVDEFS.H --------------------------------
  2.                      Embedded Device Driver Application.
  3.  
  4.    ------------------------------------------------------------------------- */
  5.  
  6. /* Scope definitions. */
  7. #define PRIVATE                 static
  8. #ifndef PUBLIC
  9. #   define PUBLIC               extern
  10. #endif
  11.  
  12. /* Internal message index. */
  13. #define DEV_MESSAGE_STRING      (LPSTR)"WM_NEW_DEV_DATA_MESSAGE"
  14.  
  15. /* Maximum number of interrupts whose data we will buffer. */
  16. #define MAX_INTERRUPTS          0x100
  17.  
  18. /* Misc. definitions. */
  19. #define DOSSVC_GETVECT          0x35
  20. #define DOSSVC_SETVECT          0x25
  21.  
  22. /* EOF */
  23.